home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / iminst.h < prev    next >
C/C++ Source or Header  |  1997-03-25  |  3KB  |  72 lines

  1. /* Copyright (C) 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* iminst.h */
  20. /* Definition of interpreter instance */
  21. #include "imain.h"
  22.  
  23. /*
  24.  * Define the structure of a search path.  Currently there is only one,
  25.  * but there might be more someday.
  26.  *
  27.  *    container - an array large enough to hold the specified maximum
  28.  * number of directories.  Both the array and all the strings in it are
  29.  * in the 'foreign' VM space.
  30.  *    list - the initial interval of container that defines the actual
  31.  * search list.
  32.  *    env - the contents of an environment variable, implicitly added
  33.  * at the end of the list; may be 0.
  34.  *    final - the final set of directories specified in the makefile;
  35.  * may be 0.
  36.  *    count - the number of elements in the list, excluding a possible
  37.  * initial '.', env, and final.
  38.  */
  39. typedef struct gs_file_path_s {
  40.     ref container;
  41.     ref list;
  42.     const char *env;
  43.     const char *final;
  44.     uint count;
  45. } gs_file_path;
  46.  
  47. /*
  48.  * Here is where we actually define the structure of interpreter instances.
  49.  * Clients should not reference any of the members.
  50.  */
  51. struct gs_main_instance_s {
  52.         /* The following are set during initialization. */
  53.     FILE *fstdin;
  54.     FILE *fstdout;
  55.     FILE *fstderr;
  56.     uint memory_chunk_size;        /* 'wholesale' allocation unit */
  57.     ulong name_table_size;
  58.     int init_done;            /* highest init done so far */
  59.     int user_errors;        /* define what to do with errors */
  60.     bool search_here_first;        /* if true, make '.' first lib dir */
  61.     bool run_start;            /* if true, run 'start' after */
  62.                     /* processing command line */
  63.     gs_file_path lib_path;        /* library search list (GS_LIB) */
  64. };
  65. /*
  66.  * Note that any file that uses the following definition of default values
  67.  * must include gconfig.h, because of SEARCH_HERE_FIRST.
  68.  */
  69. #define gs_main_instance_default_init_values\
  70.  0, 0, 0, 20000, 0, -1, 0, SEARCH_HERE_FIRST, 1
  71. extern const gs_main_instance gs_main_instance_init_values;
  72.